Skip to main content

userInfo

/v2/private/ltc/userInfo

Available Methods​

  • POST

POST /v2/private/ltc/userInfo​

This endpoint is used to save information on the user account step in the LTC flow.

Params​

ParamTypeDescription
dateOfBirthStringThe user's date of birth
genderStringThe user's gender
stateStringThe user's Sate address (ex. MI)
Example request body
body: { 
"dateOfBirth": "2021-07-29T16:50:16.791+00:00",
"gender": "M",
"state": "KY"
}

Returns​

The entire user object.

Example return object with user
user: {
...user,
dateOfBirth: "2021-07-29T16:50:16.791+00:00",
gender: "M",
address: {
state: "KY"
},
age: 1
}